home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 3 / The Arsenal Files 3.iso / gen_prog / appdemo.exe / APP.BAT < prev    next >
DOS Batch File  |  1994-11-07  |  597b  |  26 lines

  1. echo off
  2. REM Be carefull editing this BAT file because it is modified by A++ as well
  3.  
  4. :Start
  5. APP10D %1 %2 %3
  6. if errorlevel 116 goto Exit
  7. if errorlevel 114 goto EditProgram
  8. if errorlevel 113 goto RunProgram
  9. goto Exit
  10.  
  11. REM Then line after :RunProgram is modified by A++ to run
  12. REM the program which you have selected.
  13. :RunProgram
  14. DEMOVIEW
  15. pause
  16. goto Start
  17.  
  18. REM Then line after :EditProgram is modified by A++ to edit
  19. REM the last file compiled by default.  You can change the Editor to another
  20. REM one if you wish to
  21. :EditProgram
  22. C:\DOS\EDIT DEMOVIEW.APP
  23. goto Start
  24.  
  25. :Exit
  26.